home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / vallevents.sql < prev    next >
Text File  |  2000-05-12  |  746b  |  23 lines

  1. /*
  2. Collects the Events information from the component sub-views...
  3. Set up this way because of the limitations on the size of a view.  
  4. The Date in the WHERE clause is to reduce the quantity
  5. of data returned, and may be adjusted from time to time as desired; 
  6. be aware that this limits the dates for which the report can be run.
  7.  */
  8. create or replace view vallevents as
  9. select * from veventsPart1
  10. where trunc(conv_date) > '30-SEP-1999'
  11. union
  12. select * from veventsPart2
  13. where trunc(conv_date) > '30-SEP-1999'
  14. union
  15. select * from veventsPart3
  16. where trunc(conv_date) > '30-SEP-1999'
  17. union
  18. select * from veventsPart4
  19. where trunc(conv_date) > '30-SEP-1999'
  20. union
  21. select * from veventsPart5
  22. where trunc(conv_date) > '30-SEP-1999';
  23.